home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
autofx
/
saverenderedas_flc.ifx.post
< prev
next >
Wrap
Text File
|
2004-08-03
|
481b
|
27 lines
/*
* $VER: SaveRenderedAs_FLC.ifx.post 2.5 (27.02.96)
* Copyright © 1992-1996 Nova Design, Inc.
* Written by Thomas Krehbiel
*
* Save rendered image as FLC.
*
* Inputs:
* Word(Arg(1),1) = Sequence number (?)
* Word(Arg(1),2) = Total number of frames (N)
*
* Returns:
* 0 if successful, non-zero on failure
*
*/
OPTIONS RESULTS
base = 'Autofx_SaveRendFLC_'
seq = WORD(ARG(1),1)
name = GETCLIP(base||'Name'||seq)
SaveRenderedAs FLC '"'name'"' Close
EXIT